翻訳と辞書
Words near each other
・ Arithmetic circuit complexity
・ Arithmetic coding
・ Arithmetic combinatorics
・ Arithmetic derivative
・ Arithmetic dynamics
・ Arithmetic for Parents
・ Arithmetic function
・ Arithmetic genus
・ Arithmetic group
・ Arithmetic hyperbolic 3-manifold
・ Arithmetic IF
・ Arithmetic logic unit
・ Arithmetic mean
・ Arithmetic number
・ Arithmetic of abelian varieties
Arithmetic overflow
・ Arithmetic progression
・ Arithmetic rope
・ Arithmetic shift
・ Arithmetic surface
・ Arithmetic topology
・ Arithmetic underflow
・ Arithmetic variety
・ Arithmetic zeta function
・ Arithmetica
・ Arithmetica Universalis
・ Arithmetical hierarchy
・ Arithmetical ring
・ Arithmetical set
・ Arithmetico-geometric sequence


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Arithmetic overflow : ウィキペディア英語版
Arithmetic overflow


The term arithmetic overflow or simply overflow has the following meanings.
# In a computer, the condition that occurs when a calculation produces a result that is greater in magnitude than that which a given register or storage location can store or represent.
# In a computer, the amount by which a calculated value is greater in magnitude than that which a given register or storage location can store or represent. Note that the overflow may be placed at another location.
Most computers distinguish between two kinds of overflow conditions. A carry occurs when the result of an addition or subtraction, considering the operands and result as unsigned numbers, does not fit in the result. Therefore, it is useful to check the carry flag after adding or subtracting numbers that are interpreted as unsigned values. An ''overflow'' proper occurs when the result does not have the sign that one would predict from the signs of the operands (e.g. a negative result when adding two positive numbers). Therefore, it is useful to check the overflow flag after adding or subtracting numbers that are represented in two's complement form (i.e. they are considered signed numbers).
There are several methods of handling overflow:
# Avoidance: by carefully ordering operations, checking operands in advance and selecting the correct data type, it is possible to ensure that the result will never be larger than can be stored.
# Handling: If it is anticipated that overflow may occur and when it happens detected and other processing done. Example: it is possible to add two numbers each two bytes wide using just a byte addition in steps: first add the low bytes then add the high bytes, but if it is necessary to carry out of the low bytes this is arithmetic overflow of the byte addition and it necessary to detect and increment the sum of the high bytes. CPUs generally have a way of detecting this to support addition of numbers larger than their register size, typically using a status bit.
# Propagation: if a value is too large to be stored it can be assigned a special value indicating that overflow has occurred and then have all successive operation return this flag value. This is useful so that the problem can be checked for once at the end of a long calculation rather than after each step. This is often supported in Floating Point Hardware called FPUs.
# An overflow condition may be ignored, particularly if the possibility has not been anticipated, but this gives incorrect results and can compromise a program's reliability and security.
Division by zero is ''not'' a form of arithmetic overflow. Mathematically, division by zero within reals is explicitly undefined.
==Overflow bugs==

Unanticipated arithmetic overflow is a fairly common cause of program errors. Such overflow bugs may be hard to discover and diagnose because they may manifest themselves only for very large input data sets, which are less likely to be used in validation tests.〔Joshua Bloch, ("Extra, Extra - Read All About It: Nearly All Binary Searches and Mergesorts are Broken" ). Official Google Research Blog, June 2, 2006.〕
For example, an unhandled arithmetic overflow in the engine steering software was the primary cause of the crash of the 1996 maiden flight of the Ariane 5 rocket. The software had been considered bug-free since it had been used in many previous flights, but those used smaller rockets which generated lower acceleration than Ariane 5.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Arithmetic overflow」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.